Socket
Socket
Sign inDemoInstall

os-fonts

Package Overview
Dependencies
6
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    os-fonts

Retrieve fonts available on your OS.


Version published
Weekly downloads
95
decreased by-1.04%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

os-fonts

Travis Coveralls branch license

Retrieve fonts available on your OS.

Install

$ npm install --save os-fonts

Usage

const osFonts = require('os-fonts');

osFonts.getAll().then(fonts => {
  // array of fonts...
  fonts.forEach(font => {
    console.log(font);
  });
})

API

getAll([useType])

Returns a Promise with all paths to all fonts.

useType

Type: String

Default: system

Options: user, local, network, system

The use type.

getAllSync([useType])

Returns paths to all fonts (synchronous version of getAll).

getFontsInDirectory(dir)

Returns a Promise with paths to all fonts in the given directory.

dir

Type: String

The directory to read

getFontsInDirectory(dir)

Returns paths to all fonts in the given directory (synchronous version of getFontsInDirectory).

License

MIT © Vu Tran

Keywords

FAQs

Last updated on 06 Sep 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc